home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / archive / ntzip.arj / SHIP.NT < prev    next >
Text File  |  1993-10-05  |  292b  |  15 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <ntwin32.mak>
  4.  
  5. all: ship.exe
  6.  
  7. cflags = $(cflags) -DWIN32 -DMSDOS
  8.  
  9. ship.obj: ship.c
  10.     $(cc) $(cflags) $(cvars) ship.c
  11.     $(cvtobj) ship.obj
  12.  
  13. ship.exe: ship.obj
  14.     $(link) $(conflags) -out:ship.exe ship.obj $(conlibs)
  15.